home *** CD-ROM | disk | FTP | other *** search
- This example provides a very simple chat server using
- the Socket Classes. Users can TELNET to it, and it asks
- them for their name. After that, whatever they type is
- sent to all the other users' screens, with their name
- prepended so everybody knows who said what.
-
- This server doesn't provide any control options, and
- it might be a good idea to see if you can add a way to
- have the server send each chatter a prompt. You could
- also try to provide a way to send commands to the Guest
- or Chatserver objects while logged in as a chatter (for
- example, typing "/name newname" sets your name to
- "newname", or "/quit" ending your session, with "/"
- delimiting all commands).
-
- Content:
- chat.h
- chat_main.[hm]
- Chatserver.[hm]
- Guest.[hm]
- Makefile
- README (this file)
-